From: Chong Yidong Date: Fri, 11 Dec 2009 17:02:03 +0000 (+0000) Subject: * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2 X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~844^2~5773 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=315eb96d019f45edc8e37a3010dc61877c7a0f1e;p=emacs.git * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2 rather than down-mouse-1, based on follow-link conventions. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3ac96d3f010..0afa5ecf453 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-12-11 Chong Yidong + * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2 + rather than down-mouse-1, based on follow-link conventions. + * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories are compiled. diff --git a/lisp/progmodes/bug-reference.el b/lisp/progmodes/bug-reference.el index 98e0dddb50a..95cb7aed26e 100644 --- a/lisp/progmodes/bug-reference.el +++ b/lisp/progmodes/bug-reference.el @@ -32,7 +32,7 @@ (defvar bug-reference-map (let ((map (make-sparse-keymap))) - (define-key map [down-mouse-1] 'bug-reference-push-button) + (define-key map [mouse-2] 'bug-reference-push-button) (define-key map (kbd "C-c RET") 'bug-reference-push-button) map) "Keymap used by bug reference buttons.")